php8.5
Home/ Manual/ strings / functions/ strlen

strlen

PHP function Edit on GitHub ✎

(PHP 4, PHP 5, PHP 7, PHP 8)

Get string length

Description

strlen(string $string): int

Returns the length of the given string.

Parameters

string

The string being measured for length.

Return Values

The length of the string in bytes.

Examples

A strlen() example

php
<?php
$str = 'abcdef';
echo strlen($str), PHP_EOL; // 6

$str = ' ab cd ';
echo strlen($str), PHP_EOL; // 7
?>

Notes

Note

strlen() returns the number of bytes rather than the number of characters in a string.

See Also

Source: reference/strings/functions/strlen.xml · from the official PHP manual (php/doc-en)